home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / ainet / settings.frm < prev    next >
Text File  |  1997-07-19  |  5KB  |  158 lines

  1. VERSION 4.00
  2. Begin VB.Form Settings 
  3.    Caption         =   "Model & Prediction Settings ..."
  4.    ClientHeight    =   3648
  5.    ClientLeft      =   912
  6.    ClientTop       =   1980
  7.    ClientWidth     =   5436
  8.    Height          =   4032
  9.    Left            =   864
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3648
  12.    ScaleWidth      =   5436
  13.    Top             =   1644
  14.    Width           =   5532
  15.    Begin VB.CommandButton Cancel 
  16.       Cancel          =   -1  'True
  17.       Caption         =   "Cancel"
  18.       Height          =   372
  19.       Left            =   3240
  20.       TabIndex        =   15
  21.       Top             =   3120
  22.       Width           =   1572
  23.    End
  24.    Begin VB.CommandButton OK 
  25.       Caption         =   "OK"
  26.       Default         =   -1  'True
  27.       Height          =   372
  28.       Left            =   600
  29.       TabIndex        =   14
  30.       Top             =   3120
  31.       Width           =   1572
  32.    End
  33.    Begin VB.Frame Frame3 
  34.       Caption         =   "&Influence List:"
  35.       Height          =   1452
  36.       Left            =   240
  37.       TabIndex        =   9
  38.       Top             =   1440
  39.       Width           =   2412
  40.       Begin VB.OptionButton ShowLeast 
  41.          Caption         =   "Show &least influent MVs"
  42.          Height          =   252
  43.          Left            =   240
  44.          TabIndex        =   13
  45.          Top             =   960
  46.          Width           =   2052
  47.       End
  48.       Begin VB.OptionButton ShowMost 
  49.          Caption         =   "Show &most influent MVs"
  50.          Height          =   252
  51.          Left            =   240
  52.          TabIndex        =   12
  53.          Top             =   600
  54.          Width           =   2052
  55.       End
  56.       Begin VB.TextBox ListSize 
  57.          Height          =   288
  58.          Left            =   1440
  59.          TabIndex        =   11
  60.          Top             =   240
  61.          Width           =   612
  62.       End
  63.       Begin VB.Label Label2 
  64.          Alignment       =   1  'Right Justify
  65.          Caption         =   "Si&ze of the  list:"
  66.          Height          =   252
  67.          Left            =   120
  68.          TabIndex        =   10
  69.          Top             =   240
  70.          Width           =   1212
  71.       End
  72.    End
  73.    Begin VB.Frame Frame2 
  74.       Caption         =   "&Penalty"
  75.       Height          =   2652
  76.       Left            =   2880
  77.       TabIndex        =   3
  78.       Top             =   240
  79.       Width           =   2292
  80.       Begin VB.TextBox Coefficient 
  81.          Height          =   288
  82.          Left            =   1440
  83.          TabIndex        =   8
  84.          Top             =   1440
  85.          Width           =   612
  86.       End
  87.       Begin VB.OptionButton NN 
  88.          Caption         =   "N&earest Neighbor"
  89.          Height          =   252
  90.          Left            =   360
  91.          TabIndex        =   6
  92.          Top             =   960
  93.          Width           =   1572
  94.       End
  95.       Begin VB.OptionButton Dynamic 
  96.          Caption         =   "&Dynamic"
  97.          Height          =   252
  98.          Left            =   360
  99.          TabIndex        =   5
  100.          Top             =   600
  101.          Width           =   1212
  102.       End
  103.       Begin VB.OptionButton Static 
  104.          Caption         =   "&Static"
  105.          Height          =   252
  106.          Left            =   360
  107.          TabIndex        =   4
  108.          Top             =   240
  109.          Width           =   1212
  110.       End
  111.       Begin VB.Label xxxx 
  112.          Alignment       =   1  'Right Justify
  113.          Caption         =   "&Coefficient:"
  114.          Height          =   252
  115.          Left            =   360
  116.          TabIndex        =   7
  117.          Top             =   1440
  118.          Width           =   972
  119.       End
  120.    End
  121.    Begin VB.Frame Frame1 
  122.       Caption         =   "&Normalization:"
  123.       Height          =   1092
  124.       Left            =   240
  125.       TabIndex        =   0
  126.       Top             =   240
  127.       Width           =   2412
  128.       Begin VB.OptionButton Statistical 
  129.          Caption         =   "S&tatistical"
  130.          Height          =   252
  131.          Left            =   240
  132.          TabIndex        =   2
  133.          Top             =   600
  134.          Width           =   1092
  135.       End
  136.       Begin VB.OptionButton Regular 
  137.          Caption         =   "&Regular"
  138.          Height          =   252
  139.          Left            =   240
  140.          TabIndex        =   1
  141.          Top             =   240
  142.          Width           =   1452
  143.       End
  144.    End
  145. End
  146. Attribute VB_Name = "Settings"
  147. Attribute VB_Creatable = False
  148. Attribute VB_Exposed = False
  149. Private Sub Cancel_Click()
  150.     MainForm.Ret = 0
  151.     Hide
  152. End Sub
  153.  
  154. Private Sub OK_Click()
  155.     MainForm.Ret = 1
  156.     Hide
  157. End Sub
  158.